add a call to g_test_bug_base().
authorKristian Rietveld <kris@imendio.com>
Thu, 13 Dec 2007 14:05:04 +0000 (14:05 +0000)
committerKristian Rietveld <kristian@src.gnome.org>
Thu, 13 Dec 2007 14:05:04 +0000 (14:05 +0000)
2007-12-13  Kristian Rietveld  <kris@imendio.com>

* gtk/gtktestutils.c (gtk_test_init): add a call to
g_test_bug_base().

* gtk/tests/treeview-scrolling.c: add g_test_bug() calls to
appriopriate tests.

svn path=/trunk/; revision=19171

ChangeLog
gtk/gtktestutils.c
gtk/tests/treeview-scrolling.c

index 78107eda8a14eea721c2af54fda82a7e0fc96939..fbf0036679fc458ff764388da829d772462b54f6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-12-13  Kristian Rietveld  <kris@imendio.com>
+
+       * gtk/gtktestutils.c (gtk_test_init): add a call to
+       g_test_bug_base().
+
+       * gtk/tests/treeview-scrolling.c: add g_test_bug() calls to
+       appriopriate tests.
+
 2007-12-13  Kristian Rietveld  <kris@imendio.com>
 
        * gtk/tests/liststore.c:
index cafc65723e92359ab78b8b41d68c4769726a9a62..3a7fed99dddad1144e1dcfb38f24cee8b85cd22b 100644 (file)
@@ -64,6 +64,7 @@ gtk_test_init (int    *argcp,
   g_setenv ("GTK2_RC_FILES", "/dev/null", TRUE);
   gtk_disable_setlocale();
   setlocale (LC_ALL, "C");
+  g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
   gtk_init (argcp, argvp);
 }
 
index 3459fd2a17041342707000225b962be02c0b49fe..90e6ab234152194206ef215e1977cc95151736a3 100644 (file)
@@ -683,6 +683,8 @@ scroll_new_row (ScrollFixture *fixture,
         * See #81627.
         */
 
+       g_test_bug ("81627");
+
        gtk_widget_show_all (fixture->window);
 
        while (gtk_events_pending ())
@@ -728,6 +730,8 @@ test_bug316689 (ScrollFixture *fixture,
         * See #316689.
         */
 
+       g_test_bug ("316689");
+
        /* Scroll to some place close to the end */
        path = gtk_tree_path_new_from_indices (N_ROWS - 4, -1);
        scroll (fixture, path, FALSE, 0.0);
@@ -766,6 +770,7 @@ test_bug359231 (void)
        ScrollFixture *fixture;
 
        /* See #359231. */
+       g_test_bug ("359231");
 
        /* Create model (GtkTreeStore in this case) */
        store = gtk_tree_store_new (1, G_TYPE_STRING);